home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / gedlib.zip / INSTALL.ZIP / GEDCOM.H < prev    next >
Text File  |  1992-01-02  |  493b  |  34 lines

  1. #if !defined(GEDCOM)
  2.  
  3. #define GEDCOM
  4.  
  5. #ifdef CYBER
  6.  
  7. #define NON_ANSI
  8. #include "string_h"
  9. #include "ctype_h"
  10. #include "stdio_h"
  11. #include "gedmem_h"
  12. #include "gedprot_h"
  13.  
  14. #include "gedhash_h"
  15. #include "gedproc_h"
  16. #else
  17.  
  18. #include <string.h>
  19. #include <ctype.h>
  20. #include <stdio.h>
  21. #include <memory.h>
  22. #include <malloc.h>
  23. #include "gedmem.h"
  24. #include "gedprot.h"
  25. #include "gedhash.h"
  26. #include "gedproc.h"
  27.  
  28. #ifndef NON_ANSI
  29.  
  30. #include <stdlib.h>
  31. #endif
  32. #endif
  33. #endif
  34.